De Fric-frac MVC web app aanmaken
Home

De Fric-frac MVC web app aanmaken

De Fric-frac MVC web app aanmaken

We passen het Model-View-Control patroon (De Model-View-Controller architectuur) toe voor het ontwikkelen van de Fric-frac web app.

Fric-frac MVC web app

  1. Open Visual Studio 2017
  2. File -> New -> Project
    Fric-frac New Project
    Fric-frac New Project
    1. Template C#
    2. Web
    3. Kies het ASP.NET Core Web Application project sjabloon
    4. Geef het project de naam Fric-frac
    5. Plaats het in de Programmeren3-XXXX map. XXXX staat voor het modulenummer
  3. In het New ASP.NET Core Web Application dialoog venster:
    Fric-frac New ASP.NET Core Web Application
    Fric-frac New ASP.NET Core Web Application
    1. .NET Core
    2. ASP.NET Core 2.0
    3. Kies het Web Application (Model-View-Controller) sjabloon
    4. No Authentication (dat doen we later)
    5. Ok

Het resultaat inspecteren

Nadat je op Ok hebt geklikt wordt de IDE voor je project geopend. Rechts zie je de Solution Explorer:

Fric-frac New Project - Solution Explorer
Fric-frac New Project - Solution Explorer
  1. Conventie boven configuratie: let op het belang van het princiepe conventie boven configuratie (Conventie boven configuratie), het mvc framework is weerspiegeld in de mappenstructuur:
    1. Models
    2. Views/Home en Views/Shared
    3. Controllers/HomeControllers

Paragraaf

JI
2017-12-23 19:17:57